home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / src / exampleCode / opengl / defrasterPort / Makefile < prev    next >
Makefile  |  1996-11-11  |  289b  |  20 lines

  1. #!smake
  2.  
  3. include $(ROOT)/usr/include/make/commondefs
  4.  
  5. TARGETS    = defx defo defi
  6. CFILES    = defx.c defo.c defi.c
  7.  
  8. default all: $(TARGETS)
  9.  
  10. include $(COMMONRULES)
  11.  
  12. defx:    $@.c
  13.     $(CCF) $@.c -o $@ -lX11
  14.  
  15. defo:    $@.c
  16.     $(CCF) $@.c -o $@ -lGLw -lGL -lX11 -lXt -lXm
  17.  
  18. defi:    $@.c
  19.     $(CCF) $@.c -o $@ -lgl
  20.